Noemax FastInfoset.NET
WriteRaw(Char[],Int32,Int32) Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriter Class > WriteRaw Method : WriteRaw(Char[],Int32,Int32) Method






buffer
The character array containing the text to write.
index
The position within the buffer indicating the start of the text to write.
count

The number of characters to write.

This method is not supported.

Syntax

Visual Basic (Declaration) 
Public Overloads Overrides NotOverridable Sub WriteRaw( _
   ByVal buffer() As Char, _
   ByVal index As Integer, _
   ByVal count As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriter
Dim buffer() As Char
Dim index As Integer
Dim count As Integer
 
instance.WriteRaw(buffer, index, count)
C# 
public override void WriteRaw( 
   char[] buffer,
   int index,
   int count
)
Delphi 
public procedure WriteRaw( 
    buffer: Chararray of;
    index: Integer;
    count: Integer
); override; 
JScript 
public override function WriteRaw( 
   buffer : char[],
   index : int,
   count : int
);
Managed Extensions for C++ 
public: void WriteRaw( 
   char[]* buffer,
   int index,
   int count
) override 
C++/CLI 
public:
void WriteRaw( 
   array<char>^ buffer,
   int index,
   int count
) override 

Parameters

buffer
The character array containing the text to write.
index
The position within the buffer indicating the start of the text to write.
count

The number of characters to write.

Remarks

Writing raw XML text is not supported by the Fast Infoset standard. This method works the same way as WriteString.

See Also